Welcome![Sign In][Sign Up]
Location:
Search - Pascal Array

Search list

[Software Engineeringbianyiyuanlisheji

Description: 1. PL/0 语言介绍 ●PL/0 程序设计语言是一个较简单的语言,它以赋值语句为基础,构造概念有顺序、条件和重复(循环)三种。PL/0 有子程序概念,包括过程定义(可以嵌套)与调用且有局部变量说明。PL/0语言编译程序采用以语法分析为核心、一遍扫描的编译方法。词法分析和代码生成作为独立的子程序供语法分析程序调用。语法分析的同时,提供了出错报告和出错恢复的功能。在源程序没有错误编译通过的情况下,调用类PCODE解释程序解释执行生成的类PCODE代码。 ●保留字(关键字):所谓保留字是指在Pascal语言中具有特定的含义。标准Pascal语言中的保留字一共有35个,Turbo Pascal语言一共有51个。下面是Pascal语言的保留字:AND,ARRAY,BEGIN,CASE,CONST,DIV,DO,DOWNTO,ELSE,END,FILE,FOR,FUNTION,GOTO,IF,IN,LABEL,MOD,NIL,NOT,OF,OR,PACKED,PROCEDURE,PROGRAM,RECORD,REPEAT,SET,THEN,TO,TYPE,UNTIL,VAR,WHILE,WITH,EXPORTS,SHR,STRING,ASM,OBJECT,UNIT,CONSTRUCTOR,IMPLEMENTATION,DESTRUCTOR,USES,INHERITED,INLINE,INTERFACE,LIBRARY,XOR,SHL
Platform: | Size: 513232 | Author: 与非门 | Hits:

[Other resourceTurboPascalAdvancedProgramming

Description: 第1章 TURBO PASCAL高级编程技术 1.1 单元及其使用 1.2 与汇编语言混合编程 1.3 与C语言混合编程 1.4 过程类型及其使用 1.5 中断例程的编写方法 1.6 动态数组及其使用 1.7 扩充内存(EMS)及其使用 1.8 扩展内存(XMS)及其使用 1.9 程序的标准数据作代码处理的方法 第2章 实用工具单元 2.1 屏幕输入与输出单元ACRT 2.2 字符串处理单元ASTR 2.3 磁盘操作单元DISK 2.4 热键单元POPUP 2.5 数据库交互单元DBASE 2.6 扩充内存单元EMS 2.7 扩展内存单元XMS 2.8 数学函数单元MATH 2.9 矩阵运算单元MATRIX 2.10 概率分布函数单元PROB 2.11 复数运算单元COMPLEX 第3章 实用程序 3.1 软锁驱动器程序 3.2 锁硬盘逻辑盘程序 3.3 稿纸打印程序 3.4 源程序列表程序 3.5 查找并替换程序 3.6 备份硬盘主引导扇区程序 3.7 四通-PC文本文件转换程序 3.8 SPT文件与BMP文件的双向转换程序 3.9 数据库卡片打印程序 3.10 BATCH文件转换为COM文件程序 3.11 机密文件的有效销毁程序 3.12 释放内存程序 附录1 源程序文件索引表 附录2 各种显示卡及其显示模态表 -Chapter 1 TURBO PASCAL senior programming technology and its use 1.1 1.2 modules and compile language Programming were mixed with 1.3 C language types and process 1.4 1.5 interrupt routine use of a method of preparation dynamic array .6 1.7 and its use expanded memory (EMS) 1.8 and its use of Extended Memory (CPU) and 1.9 The procedures for the use of the standard code for data processing method Chapter 2 2.1 Utilities modules screen input and output alone ACRT 2.2 billion string processing unit ASTR 2.3 disk operating unit DISK 2.4 hotkeys modules P OPUP 2.5 interactive database modules expand nutritional 2.6 2.7 EMS memory modules expand the memory modules Intel mathematical function modules 2.8 2.9 MATH matrix element MATRIX 2.10 probability distribution letter PROB 2.11 modular unit co
Platform: | Size: 112255 | Author: zhangyoufu | Hits:

[Other resourcesph_5

Description: 动态规划的方程大家都知道,就是 f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j] 但是很多人会怀疑这道题的后效性而放弃动规做法。 本来我还想做Dijkstra,后来变了没二十行pascal就告诉我数组越界了……(dist:array[1..1000*1001 div 2]...) 无奈之余看了xj_kidb1的题解,刚开始还觉得有问题,后来豁然开朗…… 反复动规。上山容易下山难,我们可以从上往下走,最后输出f[n][1]。 xj_kidb1的一个技巧很重要,每次令f[i][0]=f[i][i],f[i][i+1]=f[i][1](xj_kidb1的题解还写错了)
Platform: | Size: 3282 | Author: 罗宁 | Hits:

[Software Engineeringbianyiyuanlisheji

Description: 1. PL/0 语言介绍 ●PL/0 程序设计语言是一个较简单的语言,它以赋值语句为基础,构造概念有顺序、条件和重复(循环)三种。PL/0 有子程序概念,包括过程定义(可以嵌套)与调用且有局部变量说明。PL/0语言编译程序采用以语法分析为核心、一遍扫描的编译方法。词法分析和代码生成作为独立的子程序供语法分析程序调用。语法分析的同时,提供了出错报告和出错恢复的功能。在源程序没有错误编译通过的情况下,调用类PCODE解释程序解释执行生成的类PCODE代码。 ●保留字(关键字):所谓保留字是指在Pascal语言中具有特定的含义。标准Pascal语言中的保留字一共有35个,Turbo Pascal语言一共有51个。下面是Pascal语言的保留字:AND,ARRAY,BEGIN,CASE,CONST,DIV,DO,DOWNTO,ELSE,END,FILE,FOR,FUNTION,GOTO,IF,IN,LABEL,MOD,NIL,NOT,OF,OR,PACKED,PROCEDURE,PROGRAM,RECORD,REPEAT,SET,THEN,TO,TYPE,UNTIL,VAR,WHILE,WITH,EXPORTS,SHR,STRING,ASM,OBJECT,UNIT,CONSTRUCTOR,IMPLEMENTATION,DESTRUCTOR,USES,INHERITED,INLINE,INTERFACE,LIBRARY,XOR,SHL -err
Platform: | Size: 513024 | Author: 与非门 | Hits:

[AlgorithmTurboPascalAdvancedProgramming

Description: 第1章 TURBO PASCAL高级编程技术 1.1 单元及其使用 1.2 与汇编语言混合编程 1.3 与C语言混合编程 1.4 过程类型及其使用 1.5 中断例程的编写方法 1.6 动态数组及其使用 1.7 扩充内存(EMS)及其使用 1.8 扩展内存(XMS)及其使用 1.9 程序的标准数据作代码处理的方法 第2章 实用工具单元 2.1 屏幕输入与输出单元ACRT 2.2 字符串处理单元ASTR 2.3 磁盘操作单元DISK 2.4 热键单元POPUP 2.5 数据库交互单元DBASE 2.6 扩充内存单元EMS 2.7 扩展内存单元XMS 2.8 数学函数单元MATH 2.9 矩阵运算单元MATRIX 2.10 概率分布函数单元PROB 2.11 复数运算单元COMPLEX 第3章 实用程序 3.1 软锁驱动器程序 3.2 锁硬盘逻辑盘程序 3.3 稿纸打印程序 3.4 源程序列表程序 3.5 查找并替换程序 3.6 备份硬盘主引导扇区程序 3.7 四通-PC文本文件转换程序 3.8 SPT文件与BMP文件的双向转换程序 3.9 数据库卡片打印程序 3.10 BATCH文件转换为COM文件程序 3.11 机密文件的有效销毁程序 3.12 释放内存程序 附录1 源程序文件索引表 附录2 各种显示卡及其显示模态表 -Chapter 1 TURBO PASCAL senior programming technology and its use 1.1 1.2 modules and compile language Programming were mixed with 1.3 C language types and process 1.4 1.5 interrupt routine use of a method of preparation dynamic array .6 1.7 and its use expanded memory (EMS) 1.8 and its use of Extended Memory (CPU) and 1.9 The procedures for the use of the standard code for data processing method Chapter 2 2.1 Utilities modules screen input and output alone ACRT 2.2 billion string processing unit ASTR 2.3 disk operating unit DISK 2.4 hotkeys modules P OPUP 2.5 interactive database modules expand nutritional 2.6 2.7 EMS memory modules expand the memory modules Intel mathematical function modules 2.8 2.9 MATH matrix element MATRIX 2.10 probability distribution letter PROB 2.11 modular unit co
Platform: | Size: 111616 | Author: zhangyoufu | Hits:

[DocumentsbasicAlgorithm(pascal)

Description: 基本算法正稿 包括:一、数论算法;二、图论算法;三、背包问题;四、排序算法;五、高精度计算;六、 树的遍历;七 进制转换;八 全排列与组合的生成;九.查找算法;十、贪心;十一、回溯法框架;十二、DFS框架;十三、BFS框架;十五、数据结构相关算法 -Following is the basic algorithm include: number theory algorithm Second, graph theory algorithm III knapsack problem four, sorting algorithm five, high-precision calculation six, tree traversal seven hexadecimal conversion eight wide array and combination generation 9. Search algorithm 10, greed 11, backtracking framework 12, DFS framework 13, BFS framework 15, data structure-correlation algorithm
Platform: | Size: 14336 | Author: oh204 | Hits:

[MiddleWaresph_5

Description: 动态规划的方程大家都知道,就是 f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j] 但是很多人会怀疑这道题的后效性而放弃动规做法。 本来我还想做Dijkstra,后来变了没二十行pascal就告诉我数组越界了……(dist:array[1..1000*1001 div 2]...) 无奈之余看了xj_kidb1的题解,刚开始还觉得有问题,后来豁然开朗…… 反复动规。上山容易下山难,我们可以从上往下走,最后输出f[n][1]。 xj_kidb1的一个技巧很重要,每次令f[i][0]=f[i][i],f[i][i+1]=f[i][1](xj_kidb1的题解还写错了)-Dynamic programming equation we all know, that is, f [i, j] = min (f [i-1, j-1], f [i-1, j], f [i, j-1], f [i , j+ 1])+ a [i, j] However, many people would suspect that the aftereffect of这道题give up the practice of dynamic regulation. Originally, I also want to Dijkstra, later changed twenty lines did not tell me pascal on an array of cross-border ... ... (dist: array [1 .. 1000* 1001 div 2 ]...) watched helplessly while the title xj_kidb1 solution the beginning also think there is a problem, then suddenly see the light ... ... repeatedly dynamic regulation. Difficult to easily down the mountains, we can walk down from the final output f [n] [1]. xj_kidb1 a skill is important, every time the f [i] [0] = f [i] [i], f [i] [i+ 1] = f [i] [1] (xj_kidb1 solution of the title is also wrong a)
Platform: | Size: 3072 | Author: 罗宁 | Hits:

[ELanguageGRSORT7.PAS

Description: Pascal program implementing a number of different array sorting methods and providing interface to test them for effectiveness in different initial data conditions. Interface is designed to be in Russian but all the other logic is internationsl. Can be helpful for studying of sorting algorithms and also shows the way of using functions over the function type.
Platform: | Size: 6144 | Author: MEPhIzik | Hits:

[Windows Develop_ArraySort

Description: Sort a 1D or 2D array on a specific index using the quicksort/insertionsort
Platform: | Size: 2048 | Author: issa | Hits:

[OtherTURBO_PASCAL_advanced_programming_techniques

Description: 本书是作者多年使用TURBO PASCAL编程的经验结晶。内容共分三部分,第一部分介绍TURBO PASCAL高级编程技术,包括TURBO PASCAL与汇编语言和C语言的混合编程、用TURBO PASCAL编写中断例程、使用过程类型简化程序设计、动态数组的实现方法和怎样在程序中使用扩展内存(EMS)和扩充内存(XMS)等;第二部分包括11类非常有用的TURBO PASCAL单元:显示屏输入和输出单元ACRT、字符串处理单元ASTR、磁盘操作单元DISK、热键单元POPUP、数据库交互单元DBASE、扩展内存单元EMS、扩充内存单元XMS、数学函数单元MATH、矩阵运算单元MATRIX、概率分布函数单元PROB和复数运算单元COMPLEX;第三部分是实用程序,包括软锁驱动器程序、锁硬盘逻辑分区程序、稿纸打印程序、查找并替换程序(可以进行多文件操作)、备份硬盘主引导记录程序、数据库卡片打印程序、BATCH文件转换为COM文件程序及有效擦除机密文件的程序等。本书适合于软件开发人员、大学生、研究生和PASCAL学习者使用。 该书于1994由学苑出版社出版. (ISBN 7-5028-124-4) -This book is on many years of experience using TURBO PASCAL programming crystallization. Content divided into three parts, first part TURBO PASCAL advanced programming techniques, including TURBO PASCAL and assembly language programming and C language mix, prepared with TURBO PASCAL interrupt routines, use the process types simplify programming, dynamic array of methods and how to achieve in the program using extended memory (EMS) and expanded memory (XMS), etc. The second part consists of 11 classes very useful TURBO PASCAL modules: input and output display unit ACRT, string processing unit ASTR, disk operating unit DISK, heat key element POPUP, database interaction module DBASE, extended memory unit EMS, expanded memory unit XMS, mathematical function unit MATH, matrix operation unit MATRIX, the probability distribution function and the complex computing unit cell PROB COMPLEX third part utility, including the soft-lock drive program, lock the hard disk logical partition process, w
Platform: | Size: 91136 | Author: 吴嘉晔 | Hits:

[Delphi VCLmaxminnoarray

Description: it is a simple pascal program source code with no array
Platform: | Size: 6144 | Author: khoerul amri | Hits:

[Delphi VCLRSDYNSLM

Description: and more访问尺寸不固定的数组,很好用,下了体验一下吧 -The rsDynarray classes from RealSoft provide access to several types of "Resizable" Arrays. This feature is not a standard part of Object Pascal, and simulating a Dynamic Array can be tedious and cumbersome. The rsDynarray not only makes managing a resizable array simple, but it adds functionality not found in standard arrays such as sorting, saving to file, inserting
Platform: | Size: 15360 | Author: 秦永久 | Hits:

[Documentstest_java

Description: 1、 求一维数组的最大值和最小值 2、 用一维数组输出杨辉三角 3、 找出一个二维数组的鞍点 4、 找出两个字符串中所有共同的字符 5、 输出金额的中文大写形式 6、 实现一个复数类 7、 实现一个银行账户类 8、 编写程序实现判断及识别标识符的功能 9、 实现一个计算器 10、 编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0. -1, find the one-dimensional array of maximum and minimum output Pascal' s Triangle, a one-dimensional array, find the saddle point of a two-dimensional array to identify all common characters in the two strings 5, the output amount of Chinese uppercase to achieve a complex class 7, a bank account class 8, programming judgment and identification identifier to achieve a calculator 10, programming a user login window, in which the user name requirements for 10 number, and the first digit can not be 0.
Platform: | Size: 26624 | Author: 徐福珍 | Hits:

[Otherarray

Description: turbo pascal with array function
Platform: | Size: 1024 | Author: khairul | Hits:

[Algorithm8-classical-algorithm-c-language

Description: 1.实现将输入的string字符串反序输出。 2.一个数如果恰好等于它的因子之和,这个数就称为"完数"。例如6 = 1+2+3找出10000以内的所有完数。 3.下面程序的功能是将一个4×4的数组进行逆时针旋转90度后输出,要求原始数组的数据随机输入,新数组以4行4列的方式输出 4.编程打印杨辉三角。 5.实现将输入的字符串反序输出 6.实现字符串拷贝函数strcopy(char*src,char* dest) 7.求近似Pi值。可以用公式(如:pi/2 = 1+1/3+1/3*2/5 + 1/3*2/5*3/7 + 1/3*2/5*3/7*4/9+.....) 8.输入一个字符串,判断其是否为回文。回文字符串是指从左到右读和从右到左读完全相同的字符串。-1 to achieve the reverse order of the input string string output. 2 If a number is exactly equal to the sum of its factors, this number is called a "complete count." For example, 6 = 1+2+3 identify all End counts less than 10,000. 3 The following procedure is the function of a 4 × 4 array rotated 90 degrees counter-clockwise output, requiring random input data in the original array, the new array with 4 rows 4 way output 4 Programming printing Pascal s Triangle. 5 to achieve the output of the input string in reverse order 6. Achieve string copy function strcopy (char* src, char* dest) 7 Find the approximate value of Pi. Can use the formula (eg: pi/2 = 1+1/3+1/3* 2/5+ 1/3* 2/5* 3/7+ 1/3* 2/5* 3/7* 4/9+ .....) 8 Enter a string to determine whether it is a palindrome. Palindrome string is read from left to right and right to left reading the same string.
Platform: | Size: 471040 | Author: | Hits:

[assembly languagedayin-yanghuisanjiaoxing

Description: 不规则数组的引用-代码用来打印杨辉三角-Irregular array references- print Pascal' s Triangle
Platform: | Size: 5120 | Author: 陈燕 | Hits:

[assembly language5

Description: 1、一个判素数的函数,在主函数输入一个整数,输出是否为素数的信息。 2、输出杨辉三角前十行 3、十十五个数由大到小的顺序存放在一个数组,输入一个数,折半法找出该数是数组中的第几个,若不在,输出“无此数” 4、输出所有水仙花数(各位数字立方和等于本身) 5输出100以内的完数(一个数等于其因子之和) -1, a function of the number of sub-prime, an integer in the main function of the input, the output is a prime number information. 2, the output of Pascal' s Triangle 3 top ten rows, ten fifteen descending order of the number stored in an array, enter a number, binary method to find the number of the array in the first few, if not the, output " no This number " 4, the output of all daffodils (you figure cubic equal to itself) 5 Outputs finished within 100 (a number equal to the sum of its factors)
Platform: | Size: 2048 | Author: 步旸旸 | Hits:

[Delphi VCLLab1

Description: Parser Pascal string type: var a, b, c: real d: array [1..6, 6..9] of integer s1: string s2: string [10] -Parser Pascal string type: var a, b, c: real d: array [1..6, 6..9] of integer s1: string s2: string [10]
Platform: | Size: 561152 | Author: Evgeny | Hits:

[Linux-UnixFlog

Description: map array indiced [1.N] (Pascal convention) to [0.N-1]. -map array indiced [1.N] (Pascal convention) to [0.N-1].
Platform: | Size: 3072 | Author: tanyaomr | Hits:

[assembly languageC

Description: 实现杨辉三角的输出,字符指针检测回文,字符数组检测回文,字符串按要求排序,哥德巴赫猜想的验证等C语言程序,亲测有效-Print Pascal s Triangle Goldbach conjecture verification The method of judging character array palindrome
Platform: | Size: 2048 | Author: 郭庆乐 | Hits:

CodeBus www.codebus.net